home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1996 #15
/
Monster Media Number 15 (Monster Media)(July 1996).ISO
/
prog_d
/
tpop3.zip
/
POP3SU.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-03-27
|
598b
|
36 lines
unit Pop3su;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
StdCtrls, ExtCtrls;
type
TSetupDlg = class(TForm)
OKBtn: TBitBtn;
CancelBtn: TBitBtn;
Label1: TLabel;
ServerEdit: TEdit;
Label2: TLabel;
UserNameEdit: TEdit;
Label3: TLabel;
PasswordEdit: TEdit;
Label4: TLabel;
LogFileNameEdit: TEdit;
AttDirEdit: TEdit;
Label5: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
SetupDlg: TSetupDlg;
implementation
{$R *.DFM}
end.